// JavaScript Document
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w) : 0;
TopPosition = (screen.height) ? (0) : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
myString = new String(mypage)
myRE = new RegExp("tellfriends.php", "i")
results = myString.match(myRE)
//win = window.open(mypage+'?refer='+this.location,myname,settings)
if(results=="tellfriends.php"){
 return false;
}else{
 win = window.open(mypage,myname,settings)
 }
}
