<!--
	var de = document.documentElement;        
	var w  = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;        
	var h  = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight 
		
	var scroller = false;
	
	if (w < 1000) {
		var vW = "1001";
		scroller = true;
	} else {
		var vW = "100%";
		scroller = false;
	}
	
	if (h < 765) {
		var vH = "765";
		scroller = true;
	} else {
		var vH = "100%";
	}
	
	var tagBody = document.getElementById("corpo");
	
	if (scroller == true) {
		tagBody.style.overflow = "scroll";
	} else {
		tagBody.style.overflow = "hidden";
	}	
	
	
	
	window.onresize = function () {
		window.location = "index.asp"	
	}
	
	
	function scroll_to(width,height){
		var myWidth = 0;
		var	myHeight = 0;
			
		if (typeof(window.innerWidth)=='number') {
			myWidth = window.innerWidth;
			myHeight = window.innerHeight;
			
		} else if (document.documentElement&&(document.documentElement.clientWidth || document.documentElement.clientHeight)) {
			myWidth = document.documentElement.clientWidth;
			myHeight = document.documentElement.clientHeight;
			
		} else if (document.body&&(document.body.clientWidth||document.body.clientHeight)) {
			myWidth = document.body.clientWidth;
			myHeight = document.body.clientHeight
		}
		
		wScrolPosition = (width-myWidth)/2;
		hScrolPosition = (height-myHeight)/2;
		
		scroll(wScrolPosition,hScrolPosition);
	}
	
	function resetScroll() {
		scroll(0,0);			
	}
	
	
	function NewWindow() {
		var w = 800
		var h = 600
		var mypage = "paginas/lancamentos.asp"
		var myname = "SELLERINK"
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=yes'
		win = window.open(mypage, myname, winprops)
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
	
	function fluxoWindow() {
		var w = 700
		var h = 450
		var mypage = "paginas/fluxograma.asp"
		var myname = "SELLERINK"
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,resizable=no'
		win = window.open(mypage, myname, winprops)
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
	
		function colorGuideWindow() {
		var w = 717
		var h = 537
		var mypage = "paginas/colorGuide.asp"
		var myname = "SELLERINK"
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,resizable=no'
		win = window.open(mypage, myname, winprops)
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}

// -->