<!-- Window Open -->
function openWindow(windowURL,windowName,windowWidth,windowHeight) {
  window.name = 'parentWnd';
  newWindow = window.open(windowURL,windowName,'width='+windowWidth+',height='+windowHeight+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1,left=0,top=0');
  newWindow.focus();
}
<!-- Window Open -->

<!-- NoFrame Protection -->
function alterNate(elm){
	if (!elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "";
	else if (elm.value == "") elm.value = elm.base;
}
<!-- NoFrame Protection -->

<!-- Form Vanish -->
if (parent.frames.length > 0) {
parent.location.href = location.href;
}
<!-- NoFrame Protection -->