
/* This File Adds An Event Handler to the Click Event
 * of the Tag with the ID #printButton
 * 
 * jquery lib is needed for this Feature to work 
 */

function popupPrint( ) {

	url = document.URL;
	if( url.indexOf( '?' ) == -1 ) url = url + '?mode=print';
	else url = url + '&mode=print';

	popup = open( url, "printwindow", "width=680, height=500, left=80, top=80, scrollbars=yes, resizable=yes, dependent=yes" );
	popup.focus();
}

function popupImage( url, width, height )
{
        popup = open( url, "imagePopup", "width=" + width + ", height=" + height + ", left=20, top=20, scrollbars=yes, resizable=yes, dependent=yes" );
        popup.focus();
}

function popupPlayer( url, height ) {
	
	popup = open( url, "popupPlayer", "width=400, height=" + height + ", left=80, top=80, scrollbars=yes, resizable=yes, dependent=yes" );
	popup.focus();
	
	return false;
}
