function videoPopup(url,name) {
//	window.open(url, name, "status = 1, height = 340, width = 520, resizable = 0" );
	OpenWin = window.open(url, name, "toolbar=no,resizable=no,menubar=no,location=no,scrollbars=no,status=no,width=520,height=340,screenX=0,screenY=0,Top=0,Left=0");
	OpenWin.focus();
}

function galleryPopup(url,name) {
	window.open(url, name, "status = 1, height = 490, width = 610, resizable = 0" );
}

var newwindow = '';
function popitup(url) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		newwindow=window.open(url,'Meclift','height=340,width=520');
		//if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {
		newwindow.focus()
	}
	return false;
}


var newwindow2 = '';
function popgalleryup(url) {
	if (!newwindow2.closed && newwindow2.location) {
		newwindow2.location.href = url;
	}
	else {
		newwindow2=window.open(url,'Meclift','height=490,width=610');
		//if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {
		newwindow2.focus()
	}
	return false;
}