function genericPop(url, width, height, scrollbars, resizable) {	
	var Params;	
	var Title;
	Title = "PopCap Games"
	Params = "width=" + width + ", height=" + height + ",title=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + scrollbars + ",resizable=" + resizable + ",copyhistory=0,left=0,top=0";	
	window.open (url, 'genericPop', Params);
}

function printPop(url, width, height, scrollbars, resizable, windowname, title) {
	//menu and tool bars enabled to allow printing
	var Params;	
	var Title;
	Title = "PopCap Games - " + title;
	Params = "width=" + width + ", height=" + height + ",title=0,toolbar=1,location=0,directories=0,status=0,menubar=1,scrollbars=" + scrollbars + ",resizable=" + resizable + ",copyhistory=0,left=0,top=0";	
	window.open (url, 'printPop' + windowname, Params);
}


// popup utilities

function removeString(string, subject) {
	var regex = new RegExp(string, 'g');
	return subject.replace(regex, '');
}

//bundle upsell flyout
function showTip() {
	tip = document.getElementById('upsell_hover');
	tip.style.display = "block";
}
function hideTip() {
	tip = document.getElementById('upsell_hover');
	tip.style.display = "none";
}

