// Free
function breakoutOfFrame(){
	if (top.location != location) {
		top.location.href = document.location.href ;
	}
}

// Pop
function RSPopWindow(URL,windowName,width,height,left,top) {
	var w=window.open(URL,windowName,'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+width+',height='+ height+',left='+left+',top='+top+'');
	w.focus();
}
