
<!--
// window open

function MM_openBrWindow(theURL,winName,features) {
  var win=window.open(theURL,winName,features);
  win.focus();
}

// popup window
function popup(theURL) {
	var win=window.open(theURL,'popup','scrollbars=yes,resizable=yes,width=450,height=400');
	win.focus();
}

// open modd page
function buy(theURL) {
	var win=window.open(theURL,'modd','titlebar=yes,menubar=yes,toolbar=yes,location=yes,scrollbars=yes,resizable=yes,status=yes');
	win.focus();
}

// open modd page
function modd(theURL) {
	var win=window.open(theURL,'modd','titlebar=yes,menubar=yes,toolbar=yes,location=yes,scrollbars=yes,resizable=yes,status=yes');
	win.focus();
}
//-->

