﻿// JavaScript Document

/*
$(document).ready(function(){
	
	//function to adjust the page size if too small
	if($("#skin_content").height() < 300)
	{
		$("#skin_content").height(300);
	}
	
});
*/
function checkKeycode(e) {
    
   var keycode;
   if (window.event) // IE
        keycode = e.keyCode;
   else if (e.which) // Netscape/Firefox/Opera
        keycode = e.which;
   if (keycode==13) {
        //document.location.href = "http://google.com";
      CallSearch();
      
    }
}

//document.onkeydown = checkKeycode;

