// JavaScript Document

function openWindow(url, name) {
popupWin = window.open(url, name, 'scrollbars,resizable,width=740,height=550')
}
if (self != top) {
if (document.images)
top.location.replace(window.location.href);
else
top.location.href = window.location.href;
	}
if (parent.frames.length > 0) {
parent.location.href = location.href;
	}
	
function openWindow2(url, name) {
popupWin = window.open(url, name, 'scrollbars,resizable,width=600,height=600')
}
if (self != top) {
if (document.images)
top.location.replace(window.location.href);
else
top.location.href = window.location.href;
	}
if (parent.frames.length > 0) {
parent.location.href = location.href;
	}