function pdfopen (windowname){	
	var feature="resizable=yes,scrollbars=yes";	
	var width=screen.availWidth;
	var height=screen.availHeight-50;
	
	feature += ",width="+width+",height="+height;
	window.open('',windowname,feature);
	return true;
}