function popupPrintView(){
   mainWindow = "MAIN_WINDOW";
   window.name = mainWindow;
   popupWindow = "PrintWindow_WINDOW";
   window.open('print_sample.jsp',popupWindow,'width=600,height=600,resizable=1,scrollbars=1');
   return true;
}


function showContentInPopul(url,windowName,h_,w_) { 
var w_specs = "height=300,width=500,dependent=no,resizable=yes,scrollbars=yes,menubar=no,toolbar=yes";
if((h_)&&(w_)) 
{ w_specs = "height=" + h_ + ",width=" + w_ + ",dependent=no,resizable=yes,scrollbars=yes,menubar=yes,toolbar=no"; }
if(! window.focus)
{ return; } 
var myWin= window.open(url,windowName,w_specs); 
myWin.focus(); 
url.target=windowName; 
return false;
}


function validateIGSN(igsn){					
		if (igsn.length<9){
			alert('Size of IGSN need to be 9 digits.');
			return false;
		}
		else{
			return true;
	  }	
}
