var newwindow;
function poptastic(url, append, width, height)
{
	var additive = "";
	var baseURL = document.getElementById('page_url').innerHTML.replace("&amp;", "&");
	

	if (append) {
		if(baseURL.indexOf("?") != -1){
			additive = "&" + url;
		} else {
			additive = "?" + url;
		}
		newwindow=window.open(baseURL+additive,'name','height='+height+',width='+width+',scrollbars=yes,resizable=false,toolbar=no,menubar=no,location=false');
	} else {
		url = url + document.getElementById('page_url').innerHTML;
		newwindow = window.open(url,'name','height='+height+',width='+width+',scrollbars=yes,resizable=false,toolbar=no,menubar=no,location=false');
	}
	
	if (window.focus) {newwindow.focus()}
}

function openProd(url, height, width)
{
	newwindow=window.open(url,'name','height='+height+',width='+width+',scrollbars=yes,resizable=false,toolbar=no,menubar=no,location=false');
	if (window.focus) {newwindow.focus()}
}