function popup (url, name, scroll, resize, width, height) {
	window.open(url, name,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scroll+",resizable="+resize+",width="+width+",height="+height);
}

function paymentpopup (url, name, scroll, resize, width, height) {
	window.open(url, name,"toolbar=0,location=1,directories=0,status=1,menubar=0,scrollbars="+scroll+",resizable="+resize+",width="+width+",height="+height);
}

function refer () {
	popup ("refer.php", "refer", "no", "no", 523, 550);
}

function request (comm) {
	popup ("request.php?comm="+comm, "request", "no", "no", 523, 560);
}

function privacy () {
	popup ("privacy.php", "refer", "yes", "no", 523, 360);
}

function photos (comm) {
	popup ("photos.php?comm="+comm, "photos", "no", "no", 600, 400);
}

function openplan (plan) {
	popup ("plans.php?plan="+plan, "plan", "no", "no", 650, 573);
}

function openplan (videos) {
	popup ("plans.php?plan="+plan, "plan", "no", "no", 650, 573);
}

var os;
		
os = navigator.userAgent;

function printWin() {
	if (os.lastIndexOf("Win")!=-1) {
		window.print();
	} else {
		alert("To print this page click on File -> Print");
	}
}

