function conceptScreen(strURL,winEqu){
window.location="index.html";
	var strAppVer = navigator.appVersion;
	var strAppNM  = navigator.appName;
	var serPs    = strAppVer.indexOf("MSIE",0);
	
	if(strAppVer.indexOf("Win")>=0){
		if(strAppNM.indexOf("Microsoft")>=0){
			if (strAppNM == "Microsoft Internet Explorer" && parseInt(strAppVer)>=4){
				if(parseInt(strAppVer.slice(serPs+5,serPs+6))>=6){
					if(parseInt(strAppVer.indexOf("Windows NT 5.1",0)) > 0){
						performWin = window.open(strURL ,"full","width=" + (screen.availWidth) + ",height=" + (screen.availHeight+1) + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
						performWin.moveTo(-5,-32);
						if(winEqu==true){
							window.close();
						}
						performWin.focus();
					}else{
						performWin = window.open(strURL ,"full","width=" + (screen.availWidth) + ",height=" + (screen.availHeight+1) + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
						performWin.moveTo(-5,-24);
						if(winEqu==true){
							window.close();
						}
						performWin.focus();
					}
				}else{
					performWin = window.open("" ,"full","fullscreen=1,width=" + (screen.availWidth+3) + ",height=" + (screen.availHeight+1) + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
					//performWin.resizeTo(Math.ceil(screen.availWidth+3),Math.ceil(screen.availHeight+1));
					performWin.resizeTo(Math.ceil(screen.availWidth+3),Math.ceil(screen.availHeight+1));
					performWin.moveTo  (0,0);
					performWin.document.open("text/html", "flash");
					performWin.document.write("<html>");
					performWin.document.write("<body onload=\"location.replace('"+strURL+"')\" bgcolor='#FFFFFF' topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 scroll='no'>");
					performWin.document.write("<BR>");
					performWin.document.write("</body></html>");
					performWin.document.close();
					if(winEqu==true){
						window.close();
					}
					performWin.focus();
				}
			}else{
				performWin = window.open(strURL,"full","width=" + (screen.availWidth+1) + ",height=" + (screen.availHeight-21) + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,left=0,top=0,screenX=0,screenY=0",true);
				if(winEqu==true){
					window.close();
				}
			}
		}else if(strAppNM.indexOf("Netscape")>=0){
			//performWin = window.open("","full","scrollbars=0,resizable=0,width=" + (screen.availWidth-12) +",height=" + (screen.availHeight-30));
			performWin = window.open("","full","scrollbars=0,resizable=0,outerWidth=" + screen.availWidth +",outerheight=" + screen.availHeight +",top=0,left=0");
			performWin.moveBy(0,-10);
			performWin.location.href = strURL;
			if(winEqu==true){
				window.close();
			}
		}else{
			location.replace("around/index.html");
			if(winEqu==true){
				window.close();
			}
		}
	}else if(strAppVer.indexOf("Mac")>=0){
		if(strAppVer.indexOf("Safari")>=0){
			performWin=window.open("","full","scrollbars=0,resizable=0,width=" + (screen.availWidth) +",height=" + (screen.availHeight-20));
			performWin.moveTo(0,0);
			performWin.location.href=strURL;
			if(winEqu==true){
				window.close();
			}
		}else{
			if(strAppNM.indexOf("Microsoft")>=0){
				performWin = window.open(strURL,"full","alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=1,directories=0,fullscreen=1,hotkeys=1,location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=0,screeny=0,left=0,top=0");
				performWin.resizeTo(screen.availWidth,screen.availHeight);
				if(winEqu==true){
					window.close();
				}
			}else if(strAppNM.indexOf("Netscape")>=0){
				performWin=window.open("","full","scrollbars=0,resizable=0,width=" + (screen.availWidth-12) +",height=" + (screen.availHeight-30));
				performWin.moveTo(0,0);
				performWin.location.href=strURL;
				if(winEqu==true){
					window.close();
				}
			}else{
				location.replace("around/index.html");
				if(winEqu==true){
					window.close();
				}
			}
		}
	}else{
		location.replace("around/index.html");
		if(winEqu==true){
			window.close();
		}
	}
}

function sizeCheck(w,h){
	var sw,sh;
	
	sw = screen.width;
	sh = screen.height;
	
	if(sw < w || sh < h){
		return false;
	}else{
		return true;
	}
}

function openWindow(theURL,width,height) { //v2.0
  sStyle = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes";
  if( height > 0 )
    sStyle = "height="+height+","+sStyle;
  if( width > 0 )
    sStyle = "width="+width+","+sStyle;
  window.open(theURL,"winName",sStyle);
}