function fixedSize(url,name,features) {
	//This launches a new window and then
	//focuses it if window.focus() is supported.
	win = window.open(url,name,features);
	alert(url)
}
function fullScreen(url) {
	window.open (url, '','fullscreen=yes')
}

function showYourselfChick(thePage,wt,ht){
	if(screen){
        topPos=0;
        leftPos=0;
	}
	leftPos= (screen.width-wt)/2;
	topPos = (screen.height-ht)/2;
	newWin1 = window.open(thePage,'aWin','toolbars=no, resizeable=no,scrollbars=no,left='+leftPos+',top='+topPos+',width='+wt+',height='+ht);
}