function popup(url, name, w, h, attrs){
	var win = eval ("window.parent."+name);
	if (win == null) {
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		var props = 'height='+h+',width='+w+',top='+wint+',left='+winl+(attrs ? ','+attrs:'') ;
		win = window.parent.open(url, name, props);
	}   else {
		win.location = url;
	}
	win.focus();
	return false ;
}

function popSon(song, path){
	url = "popup.php?song="+song+"&path="+path ;
	popup(url,'GASTON','300','150','menubar=no,toolbar=no,resizeable=no,scrollbars=no,locationbar=no,statusbar=no,personalbar=no');
}

function popVideo(video){
	url = "popup.php?video="+video ;
	popup(url,'GASTON','650','550','menubar=no,toolbar=no,resizeable=no,scrollbars=no,locationbar=no,statusbar=no,personalbar=no');
}

