﻿	var PCMwin;
	
	function winpop(location, orientation)
	{	
		if(orientation == 'h')
		{
			PCMwin = open(location, "Hwin", "height=400,width=500,innerHeight=400,innerWidth=500,outerHeight=400,outerWidth=500,screenX=50,left=50,screenY=200,top=200,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=yes,scrollbars=0,status=0,toolbar=0");
			PCMwin.focus();
		}
		else
		if(orientation == 'v')
		{
			PCMwin = open(location, "Vwin", "height=530,width=350,innerHeight=530,innerWidth=350,outerHeight=530,outerWidth=350,screenX=150,left=150,screenY=50,top=50,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=yes,scrollbars=0,status=0,toolbar=0");
			PCMwin.focus();
		}
		else
		if(orientation == 'x')
		{
			PCMwin = open(location, "xwin", "height=730,width=730,innerHeight=530,innerWidth=350,outerHeight=530,outerWidth=350,screenX=150,left=150,screenY=50,top=50,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=no,scrollbars=yes,status=0,toolbar=0");
			PCMwin.focus();
		}
		else
		if(orientation == 'y')
		{
			PCMwin = open(location, "ywin", "height=800,width=650,innerHeight=730,innerWidth=350,outerHeight=730,outerWidth=350,screenX=150,left=150,screenY=50,top=50,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=no,scrollbars=yes,status=0,toolbar=0");
			PCMwin.focus();
		}
		else
		if(orientation == 't')
		{
			PCMwin = open(location, "twin", "height=500,width=450,innerHeight=730,innerWidth=350,outerHeight=730,outerWidth=350,screenX=150,left=150,screenY=50,top=50,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=no,scrollbars=yes,status=0,toolbar=0");
			PCMwin.focus();
		}
	
	}
	
