function openprofile1(srtwebpage,width,hight) {
	if (document.all)
         var xMax = screen.width, yMax = screen.height;
     else
         if (document.layers)
             var xMax = window.outerWidth, yMax = window.outerHeight;
         else
             var xMax = 800, yMax=600;

     var xOffset = (xMax - width)/2, yOffset = (yMax - hight)/2;
	 
	var param;
	param = 'width='+width+',height='+hight+',status=no,resizable=no,scrollbars=no,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'';
		FlashWin = window.open(srtwebpage, '_blank',param);
	}	

function openprofile2(srtwebpage,width,hight) {
	if (document.all)
         var xMax = screen.width, yMax = screen.height;
     else
         if (document.layers)
             var xMax = window.outerWidth, yMax = window.outerHeight;
         else
             var xMax = 800, yMax=600;

     var xOffset = (xMax - width)/2 + 20, yOffset = (yMax - hight)/2 + 80;
	 
	var param;
	param = 'width='+width+',height='+hight+',status=no,resizable=no,scrollbars=no,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'';
		FlashWin = window.open(srtwebpage, '_blank',param);
	}	
		
function openme(strWebPage,strWidth,strHeight){
	openprofile1(strWebPage,strWidth,strHeight)
}

function opengroup(strWebPage,strWidth,strHeight,intID1,intID2){
	openprofile1(strWebPage + "?id="+intID1,strWidth,strHeight)
	openprofile2(strWebPage + "?id="+intID2,strWidth,strHeight)
}
