var aWindow ="";
var aWinOpened = false;
var count = 1;

function allWinClose(){
	if(aWinOpened){
		aWindow.close();
		aWinOpened = false;
	}
}

function openWin(URL, width, height) {
	var aWindow = window.open(URL,"composerwindow","toolbar=no,location=no,width="+width+",height="+height+",status=no,scrollbars=no,resizable=no,menubar=no,top=250,left=200");
	if (aWindow.closed)
	{
		return true;
	} else {
		return false;
	}
}