function delete_confirm() {
	 return confirm('Are you sure you want to DELETE this style?');
}

function adore_confirm() {
	 return confirm('Are you sure you want to ADORE this style?');
}

function follow_confirm(username, remove) {
	username = username.toUpperCase();
	var string = 'Are you sure you want to add ' + username + ' to your Style Watch?';
	if(remove)
		string = string.replace('add ' + username + ' to', 'remove ' + username + ' from');
	
	return confirm(string);
}

function dtag(tag, styleid) {
	var textbox = document.getElementById(styleid);
	var current = textbox.value;
	if(current)
		textbox.value = current + ', ' + tag;
	else
		textbox.value = tag;
}

function open_bbcode() {
	var url = 'style_file/bbcode.html';
	var name = 'BBcode';
	var settings = 'width=650,height=250,top=0,left=0,scrollbars=no,location=0,statusbars=0,menubars=0,toolbars=0,resizable=0';
	window.open(url, name, settings);
}