// JavaScript Document
function openFile(whichFile) {
	file_path = whichFile.getAttribute("href");
	win = window.open(file_path);
	win.focus();
}

 function openMovie(element) {
 	href = element.href;
	//href = "gallery.php?dir=" + directory + "&num=0";
	var win = window.open(href,"movie","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width=315, height=265");
	win.focus();
 }
 
 function openAd(element) {
 	href = element.href;
	//href = "gallery.php?dir=" + directory + "&num=0";
	var win = window.open(href,"ad","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width= 500, height=546");
	win.focus();
 }
 
 function openAd2(image, w, h) {
	//href = "gallery.php?dir=" + directory + "&num=0";
	var win = window.open("http://www.brandprofit.com/tj/print_ads/" + image ,"ad","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=yes, width= " + w +", height=" + h);
	win.focus();
 }
 
