﻿function popWin(theUrl,win_target,win_width,win_height)
{
	if (theUrl.match(".jpg"))
	{
		window.open(theUrl,win_target,'width=' + win_width + ',height=' + win_height + ',toolbar=no,menubar=no,scrollbars=yes,resizable=yes');
	}
	else if (theUrl.match(".asp"))
	{
		window.open(theUrl,win_target,'width=' + win_width + ',height=' + win_height + ',toolbar=no,menubar=no,scrollbars=no,resizable=no');
	}
}

function change_video(video)
{
	this.location=video;
}
