function newWin (file){
	window.open(file,'Opener','width=600,height=450,resizable=yes,scrollbars=yes');
}

function newWinG (file){
	window.open(file,'Opener','width=800,height=600,resizable=yes,scrollbars=yes');
}

function newWinv (file, a, b){
	a+=50;
	b+=80;
	window.open('popup/'+file+'.html', 'Opener', 'width=' + a +', height=' + b + ', resizable=yes,scrollbars=yes');
}
