function popUp4(url) 
{
 var width  = 700;
 var height = 740;
 var left   = (screen.width  - width)/2;
 var top    = (screen.height - height)/2;
 var params = 'width='+width+', height='+height;
 	 params += ', top='+top+', left='+left;
  	 params += ', directories=no';
  	 params += ', location=no';
  	 params += ', menubar=no';
 	 params += ', resizable=yes';
 	 params += ', scrollbars=yes';
  	 params += ', status=no';
  	 params += ', toolbar=no';
  	 newwin=window.open(url,'windowname', params);
 if (window.focus) {newwin.focus()}
 return false
}


function popUp2(url) 
{
 var width  = 990;
 var height = 710;
 var left   = (screen.width  - width)/2;
 var top    = (screen.height - height)/2;
 var params = 'width='+width+', height='+height;
 	 params += ', top='+top+', left='+left;
  	 params += ', directories=no';
  	 params += ', location=no';
  	 params += ', menubar=no';
 	 params += ', resizable=yes';
 	 params += ', scrollbars=yes';
  	 params += ', status=no';
  	 params += ', toolbar=no';
  	 newwin=window.open(url,'windowname', params);
 if (window.focus) {newwin.focus()}
 return false
}






    if (document.images) {

	t1on = new Image;	t1on.src = "/images/on1.gif";
	t2on = new Image;	t2on.src = "/images/on2.gif";
	t3on = new Image;	t3on.src = "/images/on3.gif";
	t4on = new Image;	t4on.src = "/images/on4.gif";
	t5on = new Image;	t5on.src = "/images/on5.gif";
	t6on = new Image;	t6on.src = "/images/on6.gif";

	t1off = new Image;	t1off.src = "/images/off1.gif";
	t2off = new Image;	t2off.src = "/images/off2.gif";
	t3off = new Image;	t3off.src = "/images/off3.gif";
	t4off = new Image;	t4off.src = "/images/off4.gif";
	t5off = new Image;	t5off.src = "/images/off5.gif";
	t6off = new Image;	t6off.src = "/images/off6.gif";
    }

    function active(imgName) {
	if (document.images) {
	imgOn = eval(imgName + "on.src");
	document [imgName].src = imgOn; }
    }

    function passive(imgName) {
	if (document.images) {
	imgOff = eval(imgName + "off.src");
	document [imgName].src = imgOff; }
    }


function openPopUpWindow() {
  popupWin = window.open('http://www.online-termpapers.com/contact_us_form.php','mywindow','width=500,height=360');
}


function launch(newURL, newName, newFeatures, orgName) {
  var remote = open(newURL, newName, newFeatures);
  if (remote.opener == null)
    remote.opener = window;
  remote.opener.name = orgName;
  return remote;
}
function showArticle(page) {
        var newsPage;
        newsPage = window.open(page,"login","location=no,menubar=no,toolbar=no,status=no,resizable=yes,width=750,height=650,scrollbars=no");
        newsPage.focus();
}
<!-- 
function openPopUpWindow() {
  popupWin = window.open('./contact_us_form.php','mywindow','width=500,height=360');
}
