function Current_Window(URL) 
{
	var Options = 'toolbar=yes,titlebar=no,location=yes,directories=no,status=no,menubar=no,resizable=yes,fullscreen=no,scrollbars=yes,top=0,left=0,width=890,height=600'
	Window.location = URL
}

function Current_Window_full(URL) 
{
	var Options = 'toolbar=yes,titlebar=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes,fullscreen=no,scrollbars=yes,top=0,left=0,width=1000,height=700'
	Window.location = URL
}

function New_Window(URL)
{
	var Options = 'toolbar=no,titlebar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,fullscreen=no,scrollbars=yes,location=no,top=0,left=0,width=950,height=800'
	Window.open(URL, '', Options)
}

function New_Window_full(URL) 
{
	var Options = 'toolbar=yes,titlebar=yes,location=yes,directories=no,status=no,menubar=yes,resizable=yes,fullscreen=no,scrollbars=yes, top=0, left=0, width=890, height=600'
	Window.open(URL, '', Options)
}


function New_Window_min(URL) 
{
	var Options = 'toolbar=no,titlebar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=auto,location=no,top=0,left=0,width=890,height=600'
	Window.open(URL, '', Options)
}
