// JavaScript Document

var newWin;
var flashWin;

function openFullWin( url,name,x,y ){

	var l = 0;
	var t = 0;

	x = screen.availWidth;
	y = screen.availHeight;
	
	var newWin = window.open(url,name,"left="+ l +",top="+ t +",width=" + x + ",height=" + y + ",scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no");

	if( newWin != null ){
		newWin.resizeTo(x,y);
		newWin.focus();	
	}

	void(0);

}