if (screen.width > 840) 
document.write('<link href="css/padding.css" rel="stylesheet" type="text/css"  media="screen" />')



        function shockscreen() {
        self.name = "main"; // names current window as "main"
            
            
            
	var w = screen.width; // Get the width of the screen
	var h = screen.height; // Get the height of the screen

	// The size of the Window
	var win_width = w - 10;
	var win_height = h - 80;

	// Where to place the Window
//	var left = (w - win_width)/2;
//	var top = (h - win_height)/2;

	var left = 0;
	var top = 0;

	var features = 'width='+win_width+',height='+win_height
	features += ',top='+top+',left='+left+',screenX='+left+',screenY='+top;

	var win = window.open('', 'shockscreen', features);

}
