function openPanoroma( url ) {

	widthWindow			=	640;
	heightWindow		=	520;

	screenX				=	50;
	screenY				=	50;

	myWin				=	window.open( url, '', 'width=' + widthWindow + ',height=' + heightWindow + ',screenX=' + screenX + ',screenY=' + screenY + ',scrollbars=yes,locationbar=no,menubar=no,resizeable=yes,status=no' );

}


