function newWindow(file, window) {
	msgWindow=open(file, window, 'resizable=no,width=400,height=500');
	if (msgWindow.opener == null) msgWindow.opener = self;
}

function openwin(url, name, specs) {
	var popup = window.open(url, name, specs);
}
