function f_openPopup(cPath, WebURL, PageToCallLocation) 
{

	f_openPopup(cPath, WebURL, PageToCallLocation, 'No');

}

//function f_openPopup(cPath, WebURL, PageToCallLocation, scrollBar) 
//{

//	var cmd = WebURL + PageToCallLocation + '?hidebanner=Y&cPath=' + cPath;
//	var caltop = 10;
//	var calleft = (screen.width-800)/2;
//	var features = 'scrollbars =' + scrollBar + ',resizable=1,width=800,height=(screen.height-20),top=' + caltop + ',left=' + calleft;	
//	win = window.open(cmd,'docs',features);
//	win.focus();
//	
//}

function f_openPopup(cPath, WebURL, PageToCallLocation, scrollBar) 
{

	var cmd = WebURL + PageToCallLocation + '?hidebanner=Y&cPath=' + cPath;
	var caltop = 10;
	var calleft = (screen.width-800)/2;
	var features = 'scrollbars =' + scrollBar + ',resizable=1,width=850,height=480,top=' + caltop + ',left=' + calleft;	
	win = window.open(cmd,'docs',features);
	win.focus();
	
}

function OpenTips(link)
{
  
     var PopupWindow=null;
     var caltop = 10;
	 var calleft = (screen.width-800)/2;
	 var features = 'scrollbars = Yes' + ',resizable=1,width=900,height=(screen.height-20),top=' + caltop + ',left=' + calleft;	
     PopupWindow=window.open(link,'docs',features);
     PopupWindow.focus();
  
 }
