function openwindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}

function closeRefresh(id) {  
	self.close();
    window.opener.location="index.php?fuseaction=location.bindings&loc_id="+id;
}

function RefreshMain(id) {
    window.opener.location="index.php?fuseaction=location.bindings&loc_id="+id;
}

function externalSite(){
	var msg = 'You are leaving this web site. The policies, including the privacy policy, on the site you are going to may vary. Be sure to review the ' +
		'policies of every site you visit. We (Parallel Promotions and partners) are not responsible for the policies and practices of other companies. ' +
		'Please click OK to continue, or Cancel to remain on this site.';
	return confirm(msg);
}