// JavaScript Document
var newwindow;
function popsample(url)
{
	newwindow=window.open(url,'name','height=357,width=500,left=0,top=0');
	if (window.focus) {newwindow.focus()}
}

function SelectPhoto(n)
{	var d=n.options[n.selectedIndex].value;
window.top.location.href =d;
n.selectedindex=0;
}

var homewin;
function main(url)
{
	homewin=window.open(url,'name1','height=415,width=595,left=0,top=0');
	if (window.focus) {homewin.focus()}
}

function SelectPhoto(n)
{	var d=n.options[n.selectedIndex].value;
window.top.location.href =d;
n.selectedindex=0;
}

var vwin;
function videowin(url)
{
	vwin=window.open(url,'name2','height=655,width=800,left=0,top=0');
	if (window.focus) {vwin.focus()}
}

function SelectPhoto(n)
{	var d=n.options[n.selectedIndex].value;
window.top.location.href =d;
n.selectedindex=0;
}