// Common Functions
// alopix software (ls) 

function openWin(url,width,height) {
	var myWindow;
	if(width <= 0) width = 320;
	if(height <= 0) height = 240;
	myWindow = window.open(url,'Window','width=' + width + ',height=' + height + ',align=left,location=no,menubar=no,toolbar=no,resizable=no');
	myWindow.focus();
	return false;
}
