﻿function launchPopUpWindow(targetPopUpWindow, pageUrl)
{
	var url = "";
	var windowName = "";
	var attributes = "";
	
	var newProducts	    = "width=570,height=500,screenX=20,screenY=20,toolbar=no,status=no,menubar=no,scrollbars=yes,resizable=no,location=no";
	
	switch(targetPopUpWindow)
	{
		case "newProducts":
			url = pageUrl;
			windowName = "NewProducts";
			attributes = newProducts;
			break;
			break;
	}
	
	//call openPopUpWindow with correct parameters
	openPopUpWindow(url, windowName, attributes);
}

function openPopUpWindow(url, windowName, attributes) 
{
	myWindow = window.open(url, windowName, attributes);
}