//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function WinOpen(url, width, height, name, top, left, scroll, status, resizable){
	if(!status) status = 0;
	if(!scroll) scroll = 'no';
	if(!name) name = 'ConventotWinOpen';
	if(!width) width = '600';
	if(!height) height = '450';
	if(!resizable) resizable = 'no';
	if(!top) top = (screen.height-height)/2;
	if(!left) left = (screen.width-width)/2;
	properties='history=no,toolbar=0,location=0,directories=0,scrollbars='+scroll+',status='+status+',menubar=0,width='+width+',height='+height+',top='+top+',left='+left+',resizable='+resizable+'';
	window.open(url, name, properties);
}

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function ShowPopPicture(nPictureNumber, nGalleryNumber, bZoom, bResizable){


}

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function Find(sId){
	if (document.all) return document.all[sId];
	if (document.getElementById) return document.getElementById(sId);
	return false;
}
