function resizeWindow(newwidth,newheight)
	{
	var heightString = "height=" + newheight;
	var widthString = "width=" + newwidth;
	var features= "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=1,"  + heightString + "," + widthString;
	return features;
	}
function openNewWindowS(doc,target,features)
	{
		myWindow = window.open(doc,target,features);
	}
	
function openNewWindowS(doc,target,width,height)
	{
		var features = resizeWindow(width,height);
		myWindow = window.open(doc,target,features);
	}

