function PopUpWindow(url,width,height,scroll,resize,x,y)
{
	/*
	url 		= filename path to file
	width 	= width of window in pixels
	height 	= height of window in pixels
	scroll	= whether window should be scrollable yes or no
	resize	= Can window be resized yes or no
	x				= how far from left in pixels
	y				= how far from top in pixels
	title		= Title of clip being played
	*/
	
	MediaWindow = window.open(url, "PopUpMedia", "fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars="+scroll+",resizable="+
	resize+",directories=no,location=no,width="+ width + ",height=" + height + ",left=" + x + ",top=" + y);
} 

var newwindow = '';

function PopItUp(url) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		newwindow=window.open(url,'name','height=655,width=540,fullscreen=no,toolbar=no,status=no,scrollbars=no,resizeable=no,left=300,top=50');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	return false;
}	
