// JavaScript Document

function ishPopUp (url,name,width, height) {
    PopUpWindow = window.open(url,name,'titlebar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=no,width=' + width + ' ,height=' + height);
    PopUpWindow.focus();
  }
function resizeWindow(img)
{
	if (img.width > 800) img.width = 800;
	if (img.height > 600) img.height = 600;
	//window.resizeTo(img.width > 0 ? img.width+12 : 400, img.height > 0 ? img.height+31 : 300);
	window.resizeTo(img.width > 0 ? img.width+7 : 400, img.height > 0 ? img.height+56 : 300);
	//alert(window.width);
}
