function popUp(title, image, width, height)
{
	var popwin = window.open("/popups/popup.php?title=" + title + "&image=" + image, "", "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=" + (width + 20) + ",height=" +  (height + 90));
	popwin.focus();
}

function popUpPage(page, height, width)
{
	var popwin = window.open(page, "", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",height=" + height);
	popwin.focus();
}

function showConfirmation(orderid)
{
	var popwin = window.open("/popups/confirmation.php?orderid=" + orderid, "", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=650,height=650");
	popwin.focus();
}

function showNotification(orderid)
{
	var popwin = window.open("/popups/notification.php?orderid=" + orderid, "", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=650,height=650");
	popwin.focus();
}

function showTracking(trackingno)
{
	var popwin = window.open("/popups/tracking.php?trackingno=" + trackingno, "", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=650,height=650");
	popwin.focus();
}
