function openWin(theURL,winName) {
var width = 395;
if (winName == "project"){
	var height = (screen.availHeight * .65);
	var left = (screen.availWidth * .95)-395;
}
if (winName == "sound"){
	var height = 120;
	var left = 20;
}
var top = (screen.availHeight * .10);

window.open(theURL, winName, 'height=' + height + ',width=' + width + ',status=no,scrollbars=yes,resizable=yes,screenx=' + left + ',left=' + left + ',screeny=' + top + ',top=' + top + '');
}
