
var newwindow = '';

function OpenPopup(url) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		newwindow=window.open(url,'name','height=680px,width=940px');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	return false;
}

var newwindow1 = '';

function OpenPopup1(url) {
	if (!newwindow1.closed && newwindow1.location) {
		newwindow1.location.href = url;
	}
	else {
		newwindow1=window.open(url,'name1','height=750px,width=750px,scrollbars=1');
		if (!newwindow1.opener) newwindow1.opener = self;
	}
	if (window.focus) {newwindow1.focus()}
	return false;
}
