
var imageURL = "";

function AFN_Detail(imageURL, imageDesc, dimX, dimY, WinNum) {

	picWindow = "DetailPicWindow" + WinNum; //Keep windows seperate.
	
	//if (window.remote) { window.remote.close(); }
	
	remote = window.open("", picWindow,"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width="+ dimY +",height=" + dimX);
	
	remote.location.href = '../news4/detail_image.php?imageName=' + imageURL + '&iDesc=' + imageDesc + '&imageX=100%' + '&imageY=100%';
	
}
