function resize(){
	window.moveTo(0,0)
	window.resizeTo(screen.availWidth,screen.availHeight);
}
function bkg(){
	window.location='bye.html'
}
var win = null;
function init_site(site_page,site_name,w,h,features) {
  bkg()
  var win_left = (screen.width-w)/2;
  var win_top = (screen.height-h)/2;
  if (win_left < 0) win_left = 0;
  if (win_top < 0) win_top = 0;
  var settings = 'height=' + h + ',';
  settings += 'width=' + w + ',';
  settings += 'top=' + win_top + ',';
  settings += 'left=' + win_left + ',';
  settings += features;
  win = window.open(site_page,site_name,settings);
  win.window.focus();
}
function init_main(){
	resize()
	if(screen.width>=1024){
		if ((navigator.appName=='Microsoft Internet Explorer') || (navigator.appName=='Netscape')){
			if (navigator.plugins['Shockwave Flash']!=-1){
				document.getElementById('anchor_1').innerHTML='resolution,browser,flash ok'
				document.getElementById('anchor_2').innerHTML='enter site'
				document.getElementById('anchor_2').href='javascript:init_site("swf/site.html","7fram3s","970","680","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0")'
				document.getElementById('anchor_3').href='javascript:init_site("swf/site.html","7fram3s","970","680","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0")'
			}
			else{
				document.getElementById('anchor_1').innerHTML='flash plugin 6 required'
				document.getElementById('anchor_1').style.color='#ff0000'
				document.getElementById('anchor_2').innerHTML='download flash plugin here'
				document.getElementById('anchor_2').href='http://www.macromedia.com/shockwave/download/triggerpages_mmcom/flash.html'
				document.getElementById('anchor_3').href='http://www.macromedia.com/shockwave/download/triggerpages_mmcom/flash.html'
			}
		}
		else{
			document.getElementById('anchor_1').innerHTML='mozilla / ie6 required'
			document.getElementById('anchor_1').style.color='#ff0000'
			document.getElementById('anchor_2').innerHTML='set browser and click here'
			document.getElementById('anchor_2').href='http://www.7fram3s.com'
			document.getElementById('anchor_3').href='http://www.7fram3s.com'
		}
	}
	else{
		document.getElementById('anchor_1').innerHTML='minimum resolution 1024*768'
		document.getElementById('anchor_1').style.color='#ff0000'
		document.getElementById('anchor_2').innerHTML='set resolution and click here'
		document.getElementById('anchor_2').href='http://www.7fram3s.com'
		document.getElementById('anchor_3').href='http://www.7fram3s.com'
	}
}