<!--

function openWinBig(url) {



	var yes = 1;

var no = 0;



var menubar = no;      // The File, Edit, View Menus

var scrollbars =yes;   // Horizontal and vertical scrollbars

var locationbar = yes;  // The location box with the site URL

var directories = no;  // the "What's New", "What Cool" links

var resizable = yes;    // Can the window be resized?

var statusbar = yes;    // Status bar (with "Document: Done")

var toolbar = yes;      // Back, Forward, Home, Stop toolbar



windowprops = "width=" + (screen.width-150) + ",height=" + (screen.height-150) + ",top=0,left=0";



windowprops += 

(menubar ? ",menubar" : "") +

(scrollbars ? ",scrollbars" : "") +

(locationbar ? ",location" : "") +

(directories ? ",directories" : "") +

(resizable ? ",resizable" : "") +

(statusbar ? ",status" : "") +

(toolbar ? ",toolbar" : "");

	

	var pic_new = window.open(url,'bare_win',windowprops);

	pic_new.focus();

	

}



function openLyrWin(url) {

	var win_new = window.open(url,'win_wcp','scrollbars,width=463,height=500,resizable');

	win_new.focus();

	

}



function openShortWin(url) {

	var win_new = window.open(url,'win_muc','scrollbars,width=463,height=440,resizable');

	win_new.focus();

	

}



function openBuyWin(url) {

	var win_new = window.open(url,'win_buy','scrollbars,menubar,toolbar,width=700,height=550,resizable');

	win_new.focus();

	

}

//-->