function openWindow(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=yes,scrollbars=yes,toolbar=no,menubar=no,location=no, resizable=no');
		       if(window.focus)
		       myWindow.focus();
		       }

function PopupWindow1(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=no,scrollbars=no,toolbar=no,menubar=no,location=no, resizable=yes');
		       if(window.focus)
		       myWindow.focus();
		       return 0;
		       }

function openWindowResizeable(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=yes,scrollbars=yes,toolbar=no,menubar=no,location=no, resizable=yes');
		       if(window.focus)
		       myWindow.focus();
		       }
		
function FlashOpenWindow(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=no,scrollbars=no,toolbar=no,menubar=no,location=no, resizable=no');
		       if(window.focus)
		       myWindow.focus();
		       }
		       
function UspOpenWindow(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=no,scrollbars=yes,toolbar=no,menubar=no,location=no, resizable=no');
		       if(window.focus)
		       myWindow.focus();
		       }

function GammeOpenWindow(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=no,scrollbars=yes,toolbar=no,menubar=no,location=no, resizable=no');

		       if(window.focus)
		       myWindow.focus();
		       
		       }
		       
function RangeOpenWindow(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=no,scrollbars=yes,toolbar=no,menubar=no,location=no, resizable=no');
		       if(window.focus)
		       myWindow.focus();
		       }

function ModelsOpenWindow(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=no,scrollbars=yes,toolbar=no,menubar=no,location=no, resizable=yes');
		       if(window.focus)
		       myWindow.focus();
		       }

function AboutOpenWindow(winName, winTarget, width, height)
		       {
		       var myWindow = window.open(winName, winTarget,
		       'height='+height+',width='+width+',status=no,scrollbars=no,toolbar=no,menubar=no,location=no, resizable=no');
		       if(window.focus)
		       myWindow.focus();
		       }


