var curvid = 0;
var newwindow = '';

function openPopUp(linkURL) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.sendEvent('playitem',linkURL);
	}
	else {
		newwindow=window.open("http://www.papocolo.com/popup.html",'Video','height=350,width=350');
		curvid = parseInt(linkURL);
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
		newwindow.sendEvent('playitem',linkURL);
}

